home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 049a / tag3.zip / TAG2.BAT < prev    next >
DOS Batch File  |  1991-10-27  |  625b  |  23 lines

  1. @echo off
  2. REM QTAG has been run and the output edited
  3. REM Demo to collect taglines for SLMR
  4. if not exist TAG_0.TMP goto HELP
  5. if exist TAGLINES.BAK del TAGLINES.BAK
  6. if not exist TAGLINES.MR goto NOFILE
  7. COPY TAGLINES.MR+TAG_0.TMP TAG_1.TMP
  8. rename TAGLINES.MR TAGLINES.BAK
  9. QSORT tag_1.TMP tag_2.TMP
  10. DUP   tag_2.TMP TAGLINES.MR -a
  11. del   tag_?.TMP
  12. goto FINIS
  13. :NOFILE
  14. echo File not found
  15. :HELP
  16. echo TAGLINE file.tag
  17. echo   Merges TAGLINES.MR with file.tag
  18. echo   Sorts it, removes duplicates and
  19. echo   writes the results as a new
  20. echo   TAGLINES.MR file.  The old file
  21. echo   is saved as TAGLINES.BAK
  22. :FINIS
  23.